home *** CD-ROM | disk | FTP | other *** search
/ Internet Tools (InfoMagic) / Internet Tools.iso / dos_win / winsock / maillist / 94-05.Z / 94-05 / 000262_news@bigblue.oit.unc.edu_Tue May 17 23:46:12 1994.msg < prev    next >
Internet Message Format  |  1994-05-31  |  37KB

  1. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  2.           id AA09314; Thu, 19 May 1994 15:55:12 -0400
  3. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  4.           id AA07482; Thu, 19 May 1994 15:32:13 -0400
  5. Received: from GATEWAY by bigblue with netnews
  6.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  7. To: winsock@sunsite.unc.edu
  8. Date: Tue, 17 May 1994 23:46:12 GMT
  9. From: paul@atlas.abccomp.oz.au (Paul Brooks)
  10. Message-Id: <Cpz0p0.31G@atlas.abccomp.oz.au>
  11. Organization: TurboSoft Pty Ltd, Sydney, Australia
  12. Sender: ses
  13. References: <2qtem9$il3@debbie.cc.nctu.edu.tw>, <Cpr1u5.6pI@uniplex.co.uk>
  14. Subject: Re: Why connect error?
  15.  
  16. In article <Cpr1u5.6pI@uniplex.co.uk> cpm@uniplex.co.uk (Chris P Murray) writes:
  17. |u8234514@cc.nctu.edu.tw wrote:
  18. |
  19. |then try:
  20. |
  21. |  sockfd = socket(AF_INET, SOCK_STREAM, 0)
  22. |  If (sockfd < 0) Then
  23. |     MsgBox ("Open socket error!")
  24. |  End If
  25. |
  26. |(Note the 'If (sockfd < 0)' test should be '< 0' not '<= 0' as it could
  27. | return fd 0 is you've close stdin)
  28.  
  29. If we assume this is Windows Sockets being worked on here, then this is
  30. incorrect. In Windows Sockets, the value returned for the socket it
  31. is _not_ necessarily a simple integer - it could have _any_ value, except
  32. the manifest constant INVALID_SOCKET (== all '1' bits). Testing for
  33. negative numbers won't work in general, because the SOCKET type is unsigned,
  34. for a start. If you are putting it into an 'int', its possible to falsely
  35. conclude that socket failed, when it actually succeeded, half the time.
  36.  
  37.     The correct sequence  (in C) is:
  38.  
  39.     SOCKET sockfd;
  40.  
  41.     sockfd = socket(....);
  42.     if (sockfd == INVALID_SOCKET)
  43.         MsgBox("open socket error");
  44.  
  45. -- 
  46. Paul Brooks              |paul@abccomp.oz.au       |Emerging Standard:
  47. TurboSoft Pty Ltd        |pwb@newt.phys.unsw.edu.au|  one that has not yet
  48. 579 Harris St., Ultimo   |                         |  been superseded.
  49. Sydney Australia 2007    |ph: +61 2 281 3155       |  
  50. From news@bigblue.oit.unc.edu Sun May 18 17:54:04 1994
  51. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  52.           id AA09338; Thu, 19 May 1994 15:55:16 -0400
  53. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  54.           id AA15853; Thu, 19 May 1994 15:46:08 -0400
  55. Received: from GATEWAY by bigblue with netnews
  56.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  57. To: winsock@sunsite.unc.edu
  58. Date: 18 May 1994 17:54:04 GMT
  59. From: i.o.clark@larc.nasa.gov (Ivan Clark)
  60. Message-Id: <2rdkns$m4c@reznor.larc.nasa.gov>
  61. Organization: NASA LaRC
  62. Sender: ses
  63. References: <2qv4hk$161f@inca.gate.net>, <1994May18.130411.26604@cmhcsys.cmhcsys.com>
  64. Subject: Re: alt.winsock.binaries???
  65.  
  66. In article <1994May18.130411.26604@cmhcsys.cmhcsys.com>, kalra@cmhcsys.com (Harsh Kalra) says:
  67. >
  68. >In article <2qv4hk$161f@inca.gate.net>, Nickolas@inca.gate.net (Nickolas) says:
  69. >>
  70. >>Hello people,
  71. >>
  72. >>   I was thinking how  about making a group for binary posting?
  73. >>It would better for some one who wants to release there winsock
  74. >>software. Just a thought ;)
  75. >>
  76. >>    Nickolas@inca.gate.net
  77. >
  78. >I second that.  What is the procedure of setting up new newsgroup, anyway?
  79. >
  80. >--Harsh Kalra
  81.  
  82. Perhaps I'm being dense, but...
  83. what would make this separate from comp.binaries.ms-windows  ?
  84. does winsock work for any other OS?
  85.  
  86. If not, then c.b.m-w seems to have a relatively low traffic rate.
  87.  
  88. Ivan Clark   |   i.o.clark@larc.nasa.gov
  89. From news@bigblue.oit.unc.edu Sun May 18 09:42:00 1994
  90. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  91.           id AA16770; Thu, 19 May 1994 16:25:08 -0400
  92. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  93.           id AA14622; Thu, 19 May 1994 16:05:23 -0400
  94. Received: from GATEWAY by bigblue with netnews
  95.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  96. To: winsock@sunsite.unc.edu
  97. Date: 18 May 1994 14:42 EST
  98. From: loney@ariel.lerc.nasa.gov (Patrick Loney)
  99. Message-Id: <18MAY199414423251@ariel.lerc.nasa.gov>
  100. Organization: :The state of being organized
  101. Sender: ses
  102. Subject: A really basic question.  (Is it in the FAQ?)
  103.  
  104.      Okay.  I've read the winsock documentation and can see the links with
  105. the BSD stuff rewriting an application that used to be on a unix box does
  106. not look to tough.  However, there is one point I am still green on.  How
  107. do I link my object code with the winsock.dll?
  108.  
  109. Pat Loney
  110. From news@bigblue.oit.unc.edu Wed May 18 11:50:17 1994
  111. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  112.           id AA16800; Thu, 19 May 1994 16:25:13 -0400
  113. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  114.           id AA14999; Thu, 19 May 1994 15:56:08 -0400
  115. Received: from GATEWAY by bigblue with netnews
  116.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  117. To: winsock@sunsite.unc.edu
  118. Date: Wed, 18 May 1994 11:50:17 GMT
  119. From: karp@medcor.McGill.CA (Stephen Karp)
  120. Message-Id: <karp-180594065018@slip54.dialup.mcgill.ca>
  121. Organization: Depts. of Surgery and Oncology, McGill University
  122. Sender: ses
  123. References: <olaval.80.2DD7B572@dhhalden.no>, <2r8hbt$9pu@nwfocus.wa.com>
  124. Subject: Re: Finding IP Addresses...
  125.  
  126. In article <2r8hbt$9pu@nwfocus.wa.com>, ralphs@halcyon.com wrote:
  127.  
  128. > In article <olaval.80.2DD7B572@dhhalden.no>, <olaval@dhhalden.no> writes:
  129. > > Try 'host <hostname>', that ought to give you the numerical
  130. > > address. 
  131. > Chameleon doesn't have a 'host' feature.  Also, some implementations
  132. > need 'host <hostname.>' to return valid IP's.  What's needed is a
  133. > WinDig (a la 'dig' for UNIX boxes).
  134. > But, neither will work unless you have some form of nameservice
  135. > available to you.  I get the impression that the original poster
  136. > didn't, or else he would not have had the problems he alluded to.
  137.  
  138. I am having the same problem with chameleon. I do have a name server as
  139. when I slip connect my macintosh I don't have any problem. But chameleon on
  140. my pc does not recognize the same name server. Any ideas?
  141. Stephen Karp  karp@medcor.mcgill.ca
  142. From news@bigblue.oit.unc.edu Wed May 18 10:02:48 1994
  143. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  144.           id AA16821; Thu, 19 May 1994 16:25:16 -0400
  145. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  146.           id AA17057; Thu, 19 May 1994 15:57:54 -0400
  147. Received: from GATEWAY by bigblue with netnews
  148.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  149. To: winsock@sunsite.unc.edu
  150. Date: Wed, 18 May 1994 14:02:48 EDT
  151. From: <34AEJ7D@CMUVM.BITNET>
  152. Message-Id: <94138.14024834AEJ7D@CMUVM.BITNET>
  153. Sender: ses
  154. References: <94135.20022434AEJ7D@CMUVM.BITNET>
  155. Subject: Re: Winsock/SMTP/PC/mail question
  156.  
  157. In article <jlewis.492.00AAAB8C@inorganic5.chem.ufl.edu>,
  158. jlewis@inorganic5.chem.ufl.edu (Jon Lewis) says:
  159. >
  160. >In article <94135.20022434AEJ7D@CMUVM.BITNET> <34AEJ7D@CMUVM.BITNET> writes:
  161. >
  162. >>I have a connection to the Internet from my PC, but no POP (or
  163. >>any other mail) server on my network. My mainframe host does
  164. >>not presently support POP mail. Telnet, FTP, all the usual
  165. >>stuff run fine directly from the desktop... but no mail. :-(
  166. >>How can I get around this problem? Hardware is 486 33DX,
  167. >>DOS 6.1, Win 3.1, winsock and tcpman.
  168. >
  169. >You're not quite specific enough about your situation.  Is your machine hooked
  170. >into the net via ethernet and always on?  If so, you can run your own SMTP
  171. >server.  I run SMTP, and POP3 servers on a machine in my lab on campus.  I can
  172. >then read my mail in the lab or via POP3 from home over slip.
  173.  
  174. Yes, it is an Ethernet connection. The PC is in my lab/office, so it
  175. is, or can be, up as needed. I have tried WSMTP but either it
  176. isn't working right or I'm too dumb to figure it out. My original
  177. thought was to do just as you suggest - run the SMTP daemon and
  178. something like Pegasus Mail on my PC. So far, no luck.
  179. From news@bigblue.oit.unc.edu Wed May 18 18:53:43 1994
  180. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  181.           id AA16835; Thu, 19 May 1994 16:25:19 -0400
  182. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  183.           id AA21964; Thu, 19 May 1994 16:19:33 -0400
  184. Received: from GATEWAY by bigblue with netnews
  185.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  186. To: winsock@sunsite.unc.edu
  187. Date: Wed, 18 May 1994 18:53:43 GMT
  188. From: ruffin@neuron.nrl.navy.mil
  189. Message-Id: <Cq0HtK.3oL@ra.nrl.navy.mil>
  190. Organization: Naval Research Lab, Washington, DC
  191. Sender: ses
  192. Subject: Re: Is Microsoft TCP/IP available via FTP
  193.  
  194. Sure, ftp.microsoft.com has a new TCP/IP driver that is
  195. WinSock compatible but leaves much of your bases memory
  196. intact!  It's called VXTCPIP...
  197.  
  198. In article <jw157.12.000B0182@columbia.edu> jw157@columbia.edu (Jim Williams) writes:
  199. >I am running Winqvt  WfWG. In reading the documentation, the author says I 
  200. >need Microsoft TCP/IP if I am running under WfWG.
  201. >
  202. >Does Microsoft provide this product free to users of WfWG? If so, does anyone 
  203. >know if I can ftp somewhere to get it.
  204. >
  205. From news@bigblue.oit.unc.edu Wed May 18 19:00:23 1994
  206. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  207.           id AA16847; Thu, 19 May 1994 16:25:21 -0400
  208. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  209.           id AA21965; Thu, 19 May 1994 16:19:38 -0400
  210. Received: from GATEWAY by bigblue with netnews
  211.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  212. To: winsock@sunsite.unc.edu
  213. Date: Wed, 18 May 1994 19:00:23 GMT
  214. From: ruffin@neuron.nrl.navy.mil
  215. Message-Id: <Cq0I4o.3wJ@ra.nrl.navy.mil>
  216. Organization: Naval Research Lab, Washington, DC
  217. Sender: ses
  218. Subject: Re: Number of Network Buffers message ??? (trumpet winsock)
  219.  
  220. Well, try editing your SYSTEM.INI file where it says
  221. NetHeapSize and set it to 64.  Let me know if that fixes
  222. the problem.
  223.  
  224.  
  225. In article <dcastano.3.000DB50D@atlantaga.ncr.com> dcastano@atlantaga.ncr.com (Diego Castano) writes:
  226. >Hello,
  227. >
  228. >I am running the trumpet winsock under windows for workgroups 3.11.  
  229. >I am not running any of the network goodies from WFWs.  I have not 
  230. >been able to make them run.  I always get a "not enough memory" 
  231. >message when I try to run the network goodies.  They install fine but 
  232. >they don't run.  (this is not the question, but if you have any idea, it is 
  233. >welcomed)
  234. >
  235. >Now the question:
  236. >When I have the trumpet winsock loaded and I run  winqvtnet a terminal 
  237. >session from winqvtnet it seems to hang.  The only common denominator I have 
  238. >found is that the "number of network buffers" message from the trumpet winsock 
  239. >windows says are less than what is desired.  It says :
  240. >
  241. >    "Warning - running with less than recommended
  242. >     number of network buffers (10 of 16)"
  243. >
  244. >In this case it was 10 of 16, it has been more or less.
  245. >
  246. >Can anyone please tell me what this is all about and maybe give me a hint on 
  247. >how to get up to the recommended 16 network buffers?   I am running a 486 
  248. >DX2/66 NCR 3300 machine with 16M RAM.
  249. >
  250. >Thanks
  251. >
  252. >Diego.
  253. >Diego.Castano@atlantaga.ncr.com
  254. From news@bigblue.oit.unc.edu Wed May 18 18:54:48 1994
  255. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  256.           id AA16873; Thu, 19 May 1994 16:25:26 -0400
  257. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  258.           id AA17818; Thu, 19 May 1994 16:15:40 -0400
  259. Received: from GATEWAY by bigblue with netnews
  260.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  261. To: winsock@sunsite.unc.edu
  262. Date: Wed, 18 May 1994 18:54:48 GMT
  263. From: hwhalen@unb.ca (Hugh Whalen)
  264. Message-Id: <hwhalen.138.2DDA6478@unb.ca>
  265. Organization: Faculty of Administration, University of New Brunswick
  266. Sender: ses
  267. Subject: Trumpet Winsock and Network buffers
  268.  
  269. I am having a problem with Trumpet Winsock. I get a warning message saying 
  270. "Running with less than recommended number of network buffers (9 of 16)". When 
  271. this happens the system is very unstable and TCPman.exe may lock up. I have a 
  272. machine with 20MB of RAM but only 526KB of memory below 640KB and 20KB between 
  273. 640KB and 1MB. I have a lot of device drivers (soundblaster card, CD-ROM, 
  274. Netware stuff, Smartdrive, etc.)
  275.  
  276. One strange thing I've noticed is that if I change my my autoexec.bat or 
  277. config.sys to change the available RAM below 1 MB the number of available 
  278. buffers changes. I can have 4, 6, 9, etc. buffers available. There seems to be 
  279. no rhyme nor reason to how these numbers change. That is, I may increase 
  280. available memory under 640KB and the number of buffers may go down or up. 
  281.  
  282. Usually, if I play with it enough then I can get 16 buffers ... but everytime 
  283. I change something in config.sys or autoexec.bat I have to start over again. 
  284. It can take hours for me to find the right combination. I had it working and 
  285. then added a new windows driver for my ATI card (release 2.3 of the mach 32 
  286. drivers) and bang ... my buffers went from 16 down to 6. I have managed to 
  287. bring it back up to 9. Sigh. 
  288.  
  289. Does anybody have a solution here. 
  290.  
  291. Hugh Whalen                     | Where all men think alike, no one
  292. Assistant Prof.                 | thinks very much
  293. Management Information Systems  |                  - Walter Lippman
  294. Faculty of Administration       | 
  295. University of New Brunswick     |         
  296.  
  297. DISCLAIMER: Neither UNB nor I care what the other thinks.
  298. From news@bigblue.oit.unc.edu Thu May 19 16:55:08 1994
  299. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  300.           id AA26548; Thu, 19 May 1994 16:55:08 -0400
  301. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  302.           id AA22111; Thu, 19 May 1994 16:47:46 -0400
  303. Received: from GATEWAY by bigblue with netnews
  304.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  305. To: winsock@sunsite.unc.edu
  306. Date: Wed, 18 May 1994 11:38:48
  307. From: ssc@teleport.com (Doug Mathias)
  308. Message-Id: <ssc.32.000BA5EA@teleport.com>
  309. Organization: SSC
  310. Sender: ses
  311. Subject: WinTrumpet searching
  312.  
  313. I am running WinTrumpet under Windows for Workgroups with apparently no 
  314. documentation available. Although I can search newsgroup names to subscribe 
  315. to, I see no capability for searching within a subscribed newsgroup itself 
  316. by keyword? Is this so? Is there any newsreaders out there that can do this?
  317.  
  318. For example, MISC.JOBS.OFFERED is so huge, I don't have time to read all the 
  319. postings. How can I search through all the postings in double quick time? Any 
  320. suggestions, please?
  321.  
  322. I am barely Internet literate so please be technically gentle with me.
  323.  
  324. Nicki-SSC
  325. From news@bigblue.oit.unc.edu Wed May 18 19:41:39 1994
  326. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  327.           id AA26561; Thu, 19 May 1994 16:55:10 -0400
  328. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  329.           id AA30289; Thu, 19 May 1994 16:30:16 -0400
  330. Received: from GATEWAY by bigblue with netnews
  331.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  332. To: winsock@sunsite.unc.edu
  333. Date: Wed, 18 May 1994 19:41:39 GMT
  334. From: epedegu@inf.utfsm.cl (Gabriel Epeldegui)
  335. Message-Id: <Cq0K57.3v5@inf.utfsm.cl>
  336. Organization: Depto. de Informatica, UTFSM.
  337. Sender: ses
  338. References: <2r6rg2$bk4@news.cs.tulane.edu>
  339. Subject: Re: need efnet server
  340.  
  341. ryker@enterprise wrote:
  342.  
  343. : Can someone give me an efnet irc server?
  344. : ip address please
  345.  
  346. Yep
  347.  
  348. and is available via anonymous ftp from h.ece.uiuc.edu as
  349. /irc/servers.940401.
  350.  
  351. -----< Africa >-------------------------------------------------------------
  352.  
  353. -----< Asia >---------------------------------------------------------------
  354.  
  355. Israel
  356.  
  357.   birisc.cs.biu.ac.il     2.8.16     Bar-Ilan University
  358.   irc.tau.ac.il           2.8.16     Tel-Aviv University
  359.   irc.technion.ac.il      2.8.16     Technion, Haifa
  360.  
  361. Japan
  362.  
  363.   dec303.aist-nara.ac.jp  2.8.16     NarA Institute of Science and Technology
  364.   dec504.aist-nara.ac.jp  2.8.16     NAra Institute of Science and Technology
  365.   wsclark.huie.hokudai.ac.jp 2.8.16  Hokkaido University,Sapporo
  366.   bohemia.jaist.ac.jp     2.8.16     Japan Adv. Institute of Sci & Tech
  367.   hemp.imel.kyoto-u.ac.jp 2.8.16     Kyoto University
  368.   scorpio.cse.kyutech.ac.jp 2.8.16   Kyushu Institute of Tech., IIZUKA
  369.   murasame.ics.es.osaka-u.ac.jp 2.7.2g Osaka
  370.   hohoi.cs.titech.ac.jp   2.8.16     Tokyo Institute of Technology
  371.   akiu.gw.tohoku.ac.jp    2.8.16     Tohoku University
  372.   utsun.s.u-tokyo.ac.jp   2.7.2g     University of Tokyo
  373.   irc.ube-c.ac.jp         2.8.16     Dept of Computer Science, Ube College
  374.   toumon.cfi.waseda.ac.jp 2.8.16     Waseda University, Tokyo
  375.   endo.wide.ad.jp         2.8.16     WIDE-NOC of Fujisawa
  376.   hamlet.wg.omron.co.jp   2.8.16     OMRON Corporation, Kyoto
  377.   omrongw.wg.omron.co.jp  2.8.16     OMRON Corporation, Kyoto
  378.   scslwide.sony.co.jp     2.7.2g     Sony Computer Science Laboratory, Inc.
  379.   biscuit.mmws.astem.or.jp 2.7.2g    ASTEM RI, Kyoto
  380.   choshi.kaba.or.jp       2.7.2g     KABA, Kyoto
  381.   wings.tokai-ic.or.jp    2.8.16     TRENDY IRC
  382.  
  383. Korea
  384.  
  385.   cbubbs.chungbuk.ac.kr   2.7.2g     Chung-Buk Univ. BBS
  386.   ns.kaist.ac.kr          2.7.2g     - KAIST
  387.   han.hana.nm.kr          2.7.2g     HANA NET IRC SERVER
  388.  
  389. -----< Australia >----------------------------------------------------------
  390.  
  391.   aquarius.cssc-woll.tansu.com.au 2.8.16 Telecom Australia Server
  392.   yoyo.cc.monash.edu.au   2.8.16     Monash University [The Biggest Uni In OZ!]
  393.   yamabico.cs.uow.edu.au  2.8.16     Uni. of Wollongong
  394.   rabble.uow.edu.au       2.8.14     Uni. of Wollongong
  395.   irchat.utas.edu.au      2.8.10     University of Tasmania
  396.   tartarus.ccsd.uts.EDU.AU 2.7.2g.troy6+wallops UTS (Sydney Aust) [I'm an SGI and I'm okay]
  397.   notjules.itd.uts.edu.au 2.8.16     Finally a 2.8* version that works ?
  398.   fox-in.socs.uts.edu.au  2.8.14     As if sbug didnt have enough memory problems...
  399.   gwen.st.nepean.uws.edu.au 2.8.14   An AT Standalone
  400.   kay.st.nepean.uws.edu.au 2.8.14    a machine which struts
  401.   defiance.vut.edu.au     2.8.16     Victoria University OF Technology
  402.   ircserver.cltr.uq.oz.au 2.8.15+hh  HulkHoganised Server, Queensland
  403.   jello.qabc.uq.oz.au     2.8.16+hh  University of Queensland
  404.  
  405. -----< Europe >-------------------------------------------------------------
  406.  
  407. Austria
  408.  
  409.   uni-linz.ac.at          2.8.12     Johannes Kepler University Linz
  410.   itc.univie.ac.at        2.8.16     Alma mater Rudolphina
  411.   olymp.wu-wien.ac.at     2.8.16     Vienna
  412.  
  413. Belgium
  414.  
  415.   OtHelLo.UlB.aC.Be       2.8.16.dl1 Ecole Polytechnique (ULB-Bruxelles)
  416.   is1.bfu.vub.ac.be       2.8.16.    Vrije Universiteit Brussel
  417.  
  418. Croatia
  419.  
  420.   smile.srce.hr           2.8.16     University Computing Centre Zagreb
  421.  
  422. Czech Republic
  423.  
  424.   irc.praha.cz            2.8.16     Praga Caput Regni, Bohemia
  425.  
  426. Denmark
  427.  
  428.   alk.iesd.auc.dk         2.8.16     Aalborg University, IESD
  429.  
  430. Finland
  431.  
  432.   irc.eunet.fi            2.8.16     EUnet
  433.   irc.funet.fi            2.8.17pre8+V2 Finnish University and Research Network (FUNET)
  434.   hutirc.cs.hut.fi        2.8.14+op  Helsinki University of Technology, CS Lab
  435.   irc.cs.hut.fi           2.8.16     Helsinki University of Technology, CS Lab
  436.   freenet.hut.fi          2.8.16     Freenet
  437.   cs.jyu.fi               2.8.16     University of Jyvaskyla
  438.   aapo.it.lut.fi          2.8.16     Lappeenranta University of Technology
  439.   gopher.it.lut.fi        2.8.17pre10+3 Lappeenranta University of Technology
  440.   kannel.lut.fi           2.8.16     Lappeenranta University of Technology
  441.   irc.otol.fi             2.8.16     Oulu Institute of Technology
  442.   rieska.oulu.fi          2.8.16     Unixverstas Olutensin, Finlandia Vodka
  443.   tolsun.oulu.fi          2.8.16     Unixverstas Olutensin, Finlandia Vodka
  444.   irc.ttl.fi              2.8.16     Turku Telephone Company
  445.   irc.cc.tut.fi           2.8.14     TUT Computer Centre
  446.   vehka.cs.uta.fi         2.8.15     University of Tampere
  447.   polaris.utu.fi          2.8.14     University of Turku
  448.   brando.uwasa.fi         2.8.16     University of Vaasa
  449.  
  450. France
  451.  
  452.   Eurecom8.Cica.FR        2.8.16+chef Institut Eurecom
  453.   cnam.cnam.fr            2.8.16     Conservatoire National des Arts et Metiers
  454.   Irc.ENST.Fr             2.8.17pre10 Irc.ENST.Fr [137.194.160.46], Paris
  455.   irc.obspm.fr            2.8.16.dl1-UDP_SUX Observatoire de Paris, Meudon
  456.   sil.polytechnique.fr    2.8.16+Chef Ecole Polytechnique, Palaiseau
  457.   Firmin.Labri.U-Bordeaux.Fr 2.8.16+Chef+Ircops_are_lame_froggies_uber_alles_fuck_the_finns Universite Bordeaux I
  458.   Dafne.Mines.U-Nancy.FR  2.8.16     Ecole des Mines de Nancy
  459.   CISMhp.Univ-Lyon1.FR    2.8.16.N#1 CISM - INSA de Lyon
  460.   PropeServer.Univ-Lyon1.FR 2.7.2g.Nono+4 INSA Lyon - "Prope" Server
  461.  
  462. Germany
  463.  
  464.   noc.belwue.de           2.8.14w    BelWue
  465.   fu-berlin.de            2.8.14     Freie Universitaet Berlin
  466.   TU-Muenchen.DE          2.7.2g     TU Muenchen
  467.   Uni-Erlangen.DE         2.8.16     The 'Berch'-Server
  468.   uni-karlsruhe.de        2.8.16.cf2 University of Karlsruhe
  469.   Uni-KL.DE               2.8.16     Kaiserslautern University
  470.   Uni-Paderborn.DE        2.8.16     University of Paderborn
  471.   Uni-Rostock.DE          2.8.16     Rostock
  472.   uni-stuttgart.de        2.8.16     Stuttgart University
  473.   rwth-aachen.xde         2.8.14yegg/argv Aachen
  474.  
  475. Hungary
  476.  
  477.   darmol.elte.hu          2.8.16     Eotvos University of Budapest
  478.  
  479. Iceland
  480.  
  481.   isgate.is               2.8.14+op  ISnet
  482.  
  483. Italy
  484.  
  485.   ghost.dsi.unimi.it      2.8.16.dl1 University of Milan
  486.   sun02.ccii.unipi.it     2.8.16     University of Pisa
  487.  
  488. The Netherlands
  489.  
  490.   ircserver.et.tudelft.nl 2.8.16.dl1 Delft University of Technology
  491.   svbs01.bs.win.tue.nl    2.8.16     Technical University of Eindhoven
  492.  
  493. Norway
  494.  
  495.   alf.uib.no              2.8.16     Universitas Bergensis, Ordinateurus Centre
  496.   mimir.ifi.uio.no        2.8.16     Universitas Osloensis
  497.   irc.cs.uit.no           2.8.16     University of Tromsoe
  498.   irc.nvg.unit.no         2.8.17pre8 Nettverksgruppa - Universitas Nidrosiensis
  499.  
  500. Poland
  501.  
  502.   galaxy.uci.agh.edu.pl   2.8.16     AGH Krakow
  503.   irc.fuw.edu.pl          2.8.16     Warsaw University, Warsaw
  504.  
  505. Russia
  506.  
  507.   irc.demos.su            2.8.16dog3 DEMOS/* Russian IRC-Server
  508.  
  509. Slovenia
  510.  
  511.   irc.arnes.si            2.8.16     Fastest growing userbase in Europe!
  512.  
  513. Sweden
  514.  
  515.   gwaihir.dd.chalmers.se  2.8.16     Chalmers Tekniska Lekskola, G|teborg
  516.   Saturnus.pt.hk-r.se     2.8.16.Ace SoftCenter, Ronneby
  517.   irc.nada.kth.se         2.8.16     Royal Institute of Technology, Stockholm
  518.   krynn.efd.lth.se        2.8.12     Lund Institute of Technology
  519.  
  520. Switzerland
  521.  
  522.   disuns2.epfl.ch         2.8.16     Swiss Fed Inst of Tech of Lausanne
  523.   firewall.epfl.ch        2.7.2g     Swiss Fed. Inst. of tech of Lausanne
  524.   irc.ethz.ch             2.8.16     Swiss Fed Inst of Tech of Zurich
  525.   ircserv.imp.ch          2.8.12     Improware AG, Fuellinsdorf
  526.   cuisund.unige.ch        2.8.16.NOTE University of Geneva
  527.  
  528. United Kingdom
  529.  
  530.   serv.eng.abdn.ac.uk     2.8.16     University of Aberdeen
  531.   shrug.dur.ac.uk         2.8.16     University of Durham
  532.   stork.doc.ic.ac.uk      2.8.15     Dept of Computing, Imperial College, London
  533.   fennel.compnews.co.uk   2.8.9      PressNet Hub
  534.   dismayl.demon.co.uk     2.8.16     Demon Internet, London
  535.  
  536. -----< North America (except US) >-----------------------------------------
  537.  
  538. Canada
  539.  
  540.   ug.cs.dal.ca            2.8.14.moose Official CoD Sponsor. Halifax, Nova Scotia
  541.   fox.nstn.ns.ca          2.7.2g     NSTN Inc, Halifax, Nova Scotia
  542.   von-neumann.info.polymtl.ca 2.8.14.cp.w Montreal Polyserver
  543.   castor.cc.umanitoba.ca  2.8.16.Wlps.Sln.Max200 University of Manitoba
  544.   degaulle.hil.unb.ca     2.8.16.wallops University New Brunswick, Fredericton, NB
  545.   clique.cdf.utoronto.ca  2.8.16.Wlp.Sln.Wzd University of Toronto
  546.   irc.yorku.ca            2.8.16.WALLOPS York University's IRC Server
  547.   io.org                  2.8.16     Internex Online
  548.  
  549. Mexico
  550.  
  551.   next00.mty.itesm.mx     2.8.12     ITESM Campus Monterrey, Mexico Hub
  552.   irc.pue.udlap.mx        2.8.16     Universidad de Las Americas, Puebla
  553.  
  554. -----< South America >-----------------------------------------------------
  555.  
  556. Chile
  557.  
  558.   UNIRED                  2.8.16.U2  El primer irc-server de SUDAMERICA
  559.  
  560. -----< United States >-----------------------------------------------------
  561.  
  562. Alaska
  563.  
  564.   merlin.acf-lab.alaska.edu 2.8.16.mal-2 The Small Talk Stinks Alaskan Server
  565.  
  566. Arkansas
  567.  
  568.   irc.engr.uark.edu       2.8.16     Home of the Razorbacks
  569.  
  570. California
  571.  
  572.   irc.netsys.com          2815p2.rw+cp NETSYS COMMUNICATIONS
  573.   nova.unix.portal.com    2.8.15pre2.rw Cupertino
  574.   harp.aix.calpoly.edu    2.8.16     The SLOer than you server...
  575.   irc.caltech.edu         2.8.16     California Institute of Technology
  576.   B-w6yx.stanford.edu     2.8.16     From DC to Daylight
  577.   w6yx.stanford.edu       2.8.16     From DC to Daylight
  578.   hyperion.cs.ucdavis.edu 2.8.16dog3 University of California at Davis
  579.   othello.ucdavis.edu     2.8.14cp   University of California, Davis
  580.   ucsd.edu                2.8.16     Univ of Calif San Diego
  581.  
  582. Colorado
  583.  
  584.   irc.Colorado.EDU        2.8.16     Univ of Colorado Server
  585.  
  586. Florida
  587.  
  588.   excalibur.mlb.semi.harris.com 2.8.16 Warlord Server, Melbourne
  589.   pegasus.cc.ucf.edu      2.8.16     University of Central Florida
  590.   infrared.creol.ucf.edu  2.8.10+sw  University of Central Florida
  591.   irc.math.ufl.edu        2.8.16     The Happiest Server on IRC
  592.  
  593. Illinois
  594.  
  595.   irc.acns.nwu.edu        2.8.16     Northwestern University, Evanston
  596.   necromancer.ece.uiuc.edu 2.8.16    UIUC Client Server
  597.   irc.uiuc.edu            2.8.16     University of Illinois at Urbana-Champaign
  598.  
  599. Indiana
  600.  
  601.   Irc.Indiana.Edu         2.8.16.atdp Indiana University Primary IRC Server
  602.  
  603. Iowa
  604.  
  605.   ircserver.iastate.edu   2.8.16.zephyr.atdp Iowa State Alternate Reality Server
  606.  
  607. Kentucky
  608.  
  609.   irc-host.ms.uky.edu     2.8.16     The Hole in the Rock Server at the Univ. of KY
  610.  
  611. Maryland
  612.  
  613.   irc.digex.net           2.8.16     Digital Express Group
  614.  
  615. Massachusetts
  616.  
  617.   world.std.com           2.8.16     The World @ Software Tool & Die
  618.   berry.cs.brandeis.edu   2.8.10     Brandeis University IRC Server
  619.   csa.bu.edu              2.8.15     Boston University, Boston
  620.   husc10.harvard.edu      2.8.16     If we're up, then all is well ;>
  621.   irc.mit.edu             2.7.2g     MIT Project Athena
  622.   irc-2.mit.edu           2.8.16dog3 Mass. Institute of Technology, Cambridge
  623.   wpi.wpi.edu             2.7.2g     Worcester Polytechnic Institute
  624.  
  625. Michigan
  626.  
  627.   hobbes.kzoo.edu         2.8.16     Kalamazoo College
  628.   pegasus.ccs.itd.umich.edu 2.8.14+cp-dog3 An Inbred-Jed Production
  629.   coyote.cs.wmich.edu     2.8.14     WMU,   Kalamazoo
  630.  
  631. Minnesota
  632.  
  633.   irc.tc.umn.edu          2.8.16     University of Minnesota, Twin Cities
  634.  
  635. Missouri
  636.  
  637.   sluaxa.slu.edu          2.8.16     St. Louis University
  638.  
  639. New Jersey
  640.  
  641.   hertz.njit.edu          2.8.16     NJIT Computing Services Department,Newark
  642.   pilot.njin.net          2.8.16.pilot Rutgers Univeristy New Brunswick
  643.  
  644. New Mexico
  645.  
  646.   IRCServer.SantaFe.EDU   2.8.16     Santa Fe Institute
  647.  
  648. New York
  649.  
  650.   azure.acsu.buffalo.edu  2.8.16+2   University at Buffalo, Buffalo
  651.   red-dwarf.cit.cornell.edu 2.8.16   The CIT IRC
  652.   mcphy0.med.nyu.edu      2.8.16     The Mid-Manhattan Link
  653.   colossus.cs.rpi.edu     2.8.16     Rensselaer Polytechnic Institute IRC Server
  654.   netserv2.its.rpi.edu    2.8.16     Rensselaer Polytechnic Institute, Troy
  655.   irc.rutgers.edu         2.8.16     NONE
  656.   mothra.syr.edu          2.8.16     Syracuse University
  657.  
  658. North Carolina
  659.  
  660.   hobbes.catt.ncsu.edu    2.8.14     North Carolina IRC Server
  661.  
  662. Ohio
  663.  
  664.   slc9.ins.cwru.edu       2.7.2i.1   CWRU IRC Server
  665.  
  666. Oklahoma
  667.  
  668.   lincoln.ecn.uoknor.edu  2.8.16     SOONER HUB SERVER 2.8.16,  SERVING SOONERS
  669.  
  670. Oregon
  671.  
  672.   irc.csos.orst.edu       2.8.16     The Beaver Server of The Northwest
  673.  
  674. Pennsylvania
  675.  
  676.   irc.duq.edu             2.8.16     Duquesne University, Pittsburgh
  677.   chestnut.chem.upenn.edu 2.8.16     University of Pennsylvania QUANYIN Server
  678.  
  679. Texas
  680.  
  681.   ra.oc.com               2.8.16     OpenConnect Systems Server, Dallas
  682.   acme.etsu.edu           2.7.2g.ID.herm The Magical Realms Server
  683.   irc.tamu.edu            2.8.16     Texas A&M University IRC server
  684.   omega.tamu.edu          2.8.16     Da' Maroon Lagoon of Aggieland!
  685.   dewey.cc.utexas.edu     2.8.16     UT's "I Repeat Class" server
  686.   lonestar.utsa.edu       2.8.16     LoNeStAr Server at Univ of TEXAS at SA [UTSA]
  687.  
  688. Utah
  689.  
  690.   hamblin.math.byu.edu    2.8.11     Brigham Young University Math Dept
  691.  
  692. Virginia
  693.  
  694.   beta.cs.jmu.edu         2.8.16     James Madison University CS
  695.   muselab.ac.runet.edu    2.8.16     Radford University
  696.   poe.acc.Virginia.EDU    2.8.16     University of Virginia
  697.  
  698. Washington
  699.  
  700.   irc.eskimo.com          2.8.16jayk Eskimo North. Located in Seattle
  701.   goren1.u.washington.edu 2.8.14.wall.ban.cp.users.(summon).slug.slime.rust We're better than you, so nyah.
  702.   goren2.u.washington.edu 2.8.16.users.ban.wallops.dawg.food.woof We're better than you, so nyah.
  703.  
  704. Washington, D.C.
  705.  
  706.   eff.org                 2.8.16     Electronic Frontier Foundation, G. St NW
  707.  
  708. ----< Version Information >-------------------------------------------------
  709.  
  710. Total    By Version      Count     Version
  711.  
  712.                            13      2.7.2g
  713.                             1      2.7.2g.ID.herm
  714.                             1      2.7.2g.Nono+4
  715.                             1      2.7.2g.troy6+wallops
  716.              17             1      2.7.2i.1
  717.  
  718.               1             1      2.8.9
  719.  
  720.                             2      2.8.10
  721.               3             1      2.8.10+sw
  722.  
  723.               1             1      2.8.11
  724.  
  725.               4             4      2.8.12
  726.  
  727.                             9      2.8.14
  728.                             1      2.8.14+cp-dog3
  729.                             2      2.8.14+op
  730.                             1      2.8.14.cp.w
  731.                             1      2.8.14.moose
  732.                             1      2.8.14.wall.ban.cp.users.(summon).slug.slime.rust
  733.                             1      2.8.14cp
  734.                             1      2.8.14w
  735.              18             1      2.8.14yegg/argv
  736.  
  737.                             3      2.8.15
  738.                             1      2.8.15+hh
  739.                             1      2.8.15pre2.rw
  740.               6             1      2815p2.rw+cp
  741.  
  742.                           104      2.8.16
  743.                             1      2.8.16+2
  744.                             1      2.8.16+Chef
  745.                             1      2.8.16+Chef+Ircops_are_lame_froggies_uber_alles_fuck_the_finns
  746.                             1      2.8.16+chef
  747.                             1      2.8.16+hh
  748.                             1      2.8.16.
  749.                             1      2.8.16.Ace
  750.                             1      2.8.16.N#1
  751.                             1      2.8.16.NOTE
  752.                             1      2.8.16.U2
  753.                             1      2.8.16.WALLOPS
  754.                             1      2.8.16.Wlp.Sln.Wzd
  755.                             1      2.8.16.Wlps.Sln.Max200
  756.                             1      2.8.16.atdp
  757.                             1      2.8.16.cf2
  758.                             3      2.8.16.dl1
  759.                             1      2.8.16.dl1-UDP_SUX
  760.                             1      2.8.16.mal-2
  761.                             1      2.8.16.pilot
  762.                             1      2.8.16.users.ban.wallops.dawg.food.woof
  763.                             1      2.8.16.wallops
  764.                             1      2.8.16.zephyr.atdp
  765.                             3      2.8.16dog3
  766.             132             1      2.8.16jayk
  767.  
  768.                             1      2.8.17pre10
  769.                             1      2.8.17pre10+3
  770.                             1      2.8.17pre8
  771.  186          4             1      2.8.17pre8+V2
  772.  
  773. ----< Other Servers List >--------------------------------------------------
  774.  
  775. These are servers which are not for general client use, or which have
  776. 'test' or 'experimental' in their title; these active servers are not
  777. counted in the Version List above.
  778.  
  779. sifon.cc.mcgill.ca                  McGill University, Computing Centre IRC Server, 2.
  780. irc.services.ca                     Canadian IRC Services Server
  781. garnet.msen.com                     Msen IRC Test Server
  782. jobe.shell.portal.com               Portal 2.8.x Test Server
  783. service.de                          TU Muenchen
  784. polaris.ctr.columbia.edu            Columbia University Testing
  785. Irc-1.Indiana.Edu                   Indiana Experiemental IRC Server
  786. note.mit.edu                        MIT NOTE server
  787. service.rutgers.edu                 RUTGERS University Note Service
  788. test.mines.u-nancy.fr               Ecole des Mines de Nancy, France
  789. service.obspm.fr                    DL's Test Service
  790. test.biscuit.mmws.astem.or.jp       Kyoto
  791. cent1.lancs.ac.uk                   NONE
  792. monitor.us                          The US IRC Monitor
  793.  
  794. ----< Delete List >---------------------------------------------------------
  795.  
  796. These currently inactive servers will be deleted from the next list unless
  797. they appear on the IRCnet again.
  798.  
  799. cairo.anu.edu.av                    Coombs IRCD (IRC's adopted home) ANU
  800. polytech.ulb.ac.be                  Ecole Polytechnique (ULB-Bruxelles)
  801. jupiter.sun.csd.unb.ca              University New Brunswick, Fredericton, NB
  802. eskinews.eskimo.com                 Eskimo North-Seattle
  803. irc.lm.com                          Telerama IRC Server
  804. irc.dknet.dk                        DKnet IRC Server
  805. athens.caltech.edu                  California Institute of Technology
  806. gsusgi2.gsu.edu                     Georgia State University, Atlanta the Olympic City
  807. IRC-2.INDIANA.EDU                   Nickel.ucs.indiana.edu[129.79.10.5] 2.8.16+patches
  808. hub.cs.jmu.edu                      James Madison University CS Hub
  809. freedom.nmsu.edu                    New Mexico State U. NMSU SCF
  810. old272.stanford.edu                 Stanford 2.7.2 Old Server
  811. irc.stolaf.edu                      St. Olaf College, Northfield
  812. mole.cis.ufl.edu                    Simulation Server
  813. llull.math.ufl.edu                  The Happiest Server on IRC
  814. lehtori.cc.tut.fi                   Tampere University of Technology
  815. HpLyot.ObsPM.Circe.FR               Observatoire de Paris, Meudon
  816. Hector.Labri.U-Bordeaux.Fr          Universite Bordeaux I
  817. samos.aegean.ariadne-t.gr           University of the Aegean
  818. areti.naval.ntua.gr                 N.A.M.E.  N.T.U.  ATHENS
  819. cyprus.csd.uch.gr                   The Greek Server!
  820. irc.datasrv.co.il                   DataServe LTD.
  821. cdc835.cdc.polimi.it                Politecnico di Milano
  822. sun.cisi.unige.it                   Universita' di Genova
  823. sun02.iet.unipi.it                  University of Pisa, Italy
  824. scpower2.sfc.keio.ac.jp             KEIO SFC IRC SERVER
  825. totto.ics.kula.kyoto-u.ac.jp        Faculty of Integrated Human Studies, Kyoto Univers
  826. siratuyu.ics.es.osaka-u.ac.jp       Osaka
  827. hamlet.nff.ncl.omron.co.jp          OMRON Corporation, Kyoto, Japan
  828. noc.uci.agh.edu.pl                  AGH Krakow, Poland
  829. irc.tuzvo.sk                        TU Zvolen
  830. irc.nchu.edu.tw                     Computer Center at NCHU, Taiwan, ROC
  831. irc.csie.nctu.edu.tw                IRC of CSIE, NCTU, Taiwan, ROC
  832. im.mgt.ncu.edu.tw                   IM/MGT at NCU, Taiwan, ROC
  833. IRC.NSYSU.edu.tw                    IRC of National Sun Yat-sen University
  834. NEWS.NSYSU.edu.tw                   IRC of National Sun Yat-sen University
  835. ccms.ntu.edu.tw                     National Taiwan University
  836.  
  837.  
  838. -- 
  839.  |    _   _  _|    \  /  _   _|  _  _   #  "... Podran cortame las manos
  840.  |__ (_) |  (_|     \/  (_| (_| (= |     #   pero nunca mi pensamiento .."
  841.                                         #  " Cachurero de la Internet ..."
  842.  <epedegu@inf.utfsm.cl>, U. Santa Maria    #  Gabriel Epeldegui T. 
  843. From news@bigblue.oit.unc.edu Thu May 19 17:25:13 1994
  844. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  845.           id AA05327; Thu, 19 May 1994 17:25:13 -0400
  846. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  847.           id AA13794; Thu, 19 May 1994 16:56:17 -0400
  848. Received: from GATEWAY by bigblue with netnews
  849.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  850. To: winsock@sunsite.unc.edu
  851. Date: Wed, 18 May 1994 15:29:47
  852. From: ronb@utxvms.cc.utexas.edu (Ron Blancarte)
  853. Message-Id: <ronb.4.000F7F97@utxvms.cc.utexas.edu>
  854. Organization: The University of Texas at Austin, Austin, Texas
  855. Sender: ses
  856. Subject: where can I find voice chat?
  857.  
  858. I just got interested in getting a copy of voicechat, but I don't know where 
  859. it is located.  could some people please post where this program is located?
  860.  
  861. I also would like to know what kinds of problems people are having with this 
  862. program.  Thanks alot.
  863.  
  864. Ron Blancarte